home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / apt-xapian-index / plugins / sections.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2009-10-28  |  4KB  |  95 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. import apt
  5. import xapian
  6. import os
  7. import os.path as os
  8.  
  9. class Sections:
  10.     
  11.     def info(self):
  12.         '''
  13.         Return general information about the plugin.
  14.  
  15.         The information returned is a dict with various keywords:
  16.          
  17.          timestamp (required)
  18.            the last modified timestamp of this data source.  This will be used
  19.            to see if we need to update the database or not.  A timestamp of 0
  20.            means that this data source is either missing or always up to date.
  21.          values (optional)
  22.            an array of dicts { name: name, desc: description }, one for every
  23.            numeric value indexed by this data source.
  24.  
  25.         Note that this method can be called before init.  The idea is that, if
  26.         the timestamp shows that this plugin is currently not needed, then the
  27.         long initialisation can just be skipped.
  28.         '''
  29.         file = apt.apt_pkg.Config.FindFile('Dir::Cache::pkgcache')
  30.         return dict(timestamp = os.path.getmtime(file))
  31.  
  32.     
  33.     def init(self, info, progress):
  34.         '''
  35.         If needed, perform long initialisation tasks here.
  36.  
  37.         info is a dictionary with useful information.  Currently it contains
  38.         the following values:
  39.  
  40.           "values": a dict mapping index mnemonics to index numbers
  41.  
  42.         The progress indicator can be used to report progress.
  43.         '''
  44.         pass
  45.  
  46.     
  47.     def doc(self):
  48.         '''
  49.         Return documentation information for this data source.
  50.  
  51.         The documentation information is a dictionary with these keys:
  52.           name: the name for this data source
  53.           shortDesc: a short description
  54.           fullDoc: the full description as a chapter in ReST format
  55.         '''
  56.         return dict(name = 'Package sections', shortDesc = 'Debian package sections', fullDoc = '\n            The section is indexed literally, with the prefix XS.\n            ')
  57.  
  58.     
  59.     def index(self, document, pkg):
  60.         '''
  61.         Update the document with the information from this data source.
  62.  
  63.         document  is the document to update
  64.         pkg       is the python-apt Package object for this package
  65.         '''
  66.         sec = pkg.section
  67.         if sec:
  68.             document.add_term('XS' + sec)
  69.         
  70.  
  71.     
  72.     def indexDeb822(self, document, pkg):
  73.         '''
  74.         Update the document with the information from this data source.
  75.  
  76.         This is alternative to index, and it is used when indexing with package
  77.         data taken from a custom Packages file.
  78.  
  79.         document  is the document to update
  80.         pkg       is the Deb822 object for this package
  81.         '''
  82.         sec = pkg['Section']
  83.         if sec:
  84.             document.add_term('XS' + sec)
  85.         
  86.  
  87.  
  88.  
  89. def init():
  90.     '''
  91.     Create and return the plugin object.
  92.     '''
  93.     return Sections()
  94.  
  95.